home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 June
/
ccd0605.iso
/
Software
/
Freeware
/
Programare
/
highlight
/
highlight-W32GUI-2.2-10b-Setup.exe
/
{app}
/
src
/
ASSourceIterator.h
< prev
next >
Wrap
C/C++ Source or Header
|
2004-02-01
|
333b
|
25 lines
#ifndef ASSOURCEITERATOR_H
#define ASSOURCEITERATOR_H
#include <string>
#include "compiler_defines.h"
#ifdef USES_NAMESPACE
namespace astyle
{
#endif
class ASSourceIterator
{
public:
virtual bool hasMoreLines() const = 0;
virtual std::string nextLine() = 0;
};
#ifdef USES_NAMESPACE
}
#endif
#endif